home *** CD-ROM | disk | FTP | other *** search
- /***************************************************************************
-
- DataTran.h
-
- Copyright: (c) 1995 by Visigenic Software, Inc., all rights reserved.
-
- ***************************************************************************/
-
- #ifndef __DATATRANSLATE_H
-
- #define __DATATRANSLATE_H 1
-
- #ifndef __SQLEXT
- #include "SQLExt.h"
- #endif
-
- #if MACODBC
- #include <Quickdraw.h>
- #define HWND GrafPtr
- #endif // MACODBC -+
-
- #if ! MACODBC // -+
-
- #ifdef WIN32
- #define TRANSAPI __stdcall
- #else
- #define TRANSAPI EXPORT FAR PASCAL
- #endif
-
- #define TRANSPREAPI
- #define BOOL_TRANSAPI BOOL TRANSAPI
-
- #else // MACODBC -+
-
- #define TRANSAPI
- #define TRANSPREAPI pascal
- #define BOOL_TRANSAPI pascal BOOL
-
- #endif // MACODBC -+
-
- BOOL_TRANSAPI SQLDataSourceToDriver( UDWORD fOption,
- SWORD fCType,
- PTR rgbValueIn,
- SDWORD cbValueIn,
- PTR rgbValueOut,
- SDWORD cbValueOutMax,
- SDWORD *pcbValueOut,
- UCHAR *szErrorMsg,
- SWORD cbErrorMsgMax,
- SWORD *pcbErrorMsg);
-
- BOOL_TRANSAPI SQLDriverToDataSource( UDWORD fOption,
- SWORD fCType,
- PTR rgbValueIn,
- SDWORD cbValueIn,
- PTR rgbValueOut,
- SDWORD cbValueOutMax,
- SDWORD *pcbValueOut,
- UCHAR *szErrorMsg,
- SWORD cbErrorMsgMax,
- SWORD *pcbErrorMsg);
-
- BOOL_TRANSAPI ConfigTranslator ( HWND hwnd,
- DWORD *pvOption);
-
-
- #endif // __DATATRANSLATE_H
-